-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (48 loc) · 1.52 KB
/
setup.py
File metadata and controls
54 lines (48 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- encoding: utf-8 -*-
# @file: setup
# @author: theol
# @Date: 2018/1/2 12:39
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as readme:
README = readme.read()
new_dir = os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))
os.chdir(new_dir)
setup(
name='focusonecc-common',
version='0.1',
package_dir={'common': ''},
packages=[
'common',
'common.auth',
'common.commands',
'common.demo',
'common.fabrics',
'common.factories',
'common.geo',
'common.models',
'common.notification',
'common.notification.services',
'common.notification.services.umessage',
'common.payment',
'common.resources',
'common.templatetags',
'common.tests',
'common.utils',
'common.validators',
'common.widgets'
],
include_package_data=True,
license='MIT License',
description='Django backend common application',
long_description=README,
url='http://github.com/focusonecc/common',
author_email='theol.liang@foxmail.com',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operation System :: OS Independent',
'Programming Language :: Python',
]
)