-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
27 lines (25 loc) · 816 Bytes
/
setup.py
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='file2dna',
version='0.4',
author = 'Allan Inocencio de Souza Costa',
author_email = 'allaninocencio@yahoo.com.br',
description = 'A script to encode/decode arbitrary computer files into DNA sequences.',
url= 'https://github.com/allanino/DNA',
packages=['dna'],
include_package_data=True,
license='MIT',
keywords= 'dna encoding decoding file',
long_description=read('README.rst'),
entry_points = {
'console_scripts': ['dna=dna.dna:main'],
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
)