summaryrefslogtreecommitdiff
path: root/setup.py
blob: 2cc33279b6d8e10194ccafec18024ab08d7db7c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Always prefer setuptools over distutils
from setuptools import setup, find_namespace_packages

'''
Created for packaging and distributing of python projects
Makes it easier to get an overview of the project and dependencies
Also needed for `Read the docs` installation and creating autodocs
Needed to define the module structure, look up `Modules` for python
'''
setup(
    name='eSim',
    version='2.2.0 pre-release',
    author='FOSSEE',
    author_email='contact-esim@fossee.in',
    package_dir={'': 'src'},
    packages=find_namespace_packages(where='src'),
    license='GNU GPL LICENSE',
    description='Useful circuit simulation library',
    long_description=open('README.md').read(),
)