-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 736 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (28 loc) · 736 Bytes
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
import os
from setuptools import find_packages, setup
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name='notejam',
license='',
author='',
url='',
author_email='akononov.job@gmail.com',
description='',
package_dir={'': 'notejam'},
packages=find_packages('notejam'),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'notejam = main:main',
],
},
classifiers=[
'Framework :: Django',
'Natural Language :: English',
'Operating System :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
],
)